iT邦幫忙

0

30天 Leetcode挑戰_Day 24

  • 分享至 

  • xImage
  •  

本日耗時:23mins

  1. Rotate Image
class Solution {
public:
    void rotate(vector<vector<int>>& matrix) {
        int n = matrix.size();
        vector<vector<int>> copy(n, vector<int>(n));
        for(int i = 0; i < n; ++i) {
            for(int j = 0; j < n; ++j) {
                copy[i][n - 1 - j] = matrix[j][i];
            }
        }
        matrix = copy;
    }
};

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言